9bfed83ecfa7af3834a716b694a085cce48013e9,src/java/org/apache/cassandra/db/Table.java,Table,apply,#RowMutation#boolean#,385

Before Change


                    if (mutatedIndexedColumns != null)
                    {
                        // ignore full index memtables -- we flush those when the "master" one is full
                        applyIndexUpdates(mutation.key(), cf, cfs, mutatedIndexedColumns, oldIndexedColumns);
                    }
                }
            }

After Change


                        memtablesToFlush = addFullMemtable(memtablesToFlush, fullMemtable);

                    // ignore full index memtables -- we flush those when the "master" one is full
                    applyIndexUpdates(mutation.key(), cf, cfs, mutatedIndexedColumns, oldIndexedColumns);
                }
            }
        }